home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Libris Britannia 4
/
science library(b).zip
/
science library(b)
/
DJGPP
/
AECUR102.ZIP
/
contrib
/
curses
/
src
/
machine.c
< prev
next >
Wrap
C/C++ Source or Header
|
1990-03-09
|
438b
|
21 lines
/**********************************************************************
*
* machine.c
*
* copyright (c) 1988,89,90 J. Alan Eldridge
*
* get the machine id word from the ROM
*
*********************************************************************/
#include "curses.h"
void
get_machine_id(MACHINE_ID *id_ptr)
{
unsigned long id_long = 0xffff000e;
*id_ptr = *(MACHINE_ID far *)id_long;
}